home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / tlxjwpc5.zip / GMODEM.SLT < prev    next >
Text File  |  1990-09-21  |  1KB  |  44 lines

  1. //╔═════════════════════════════════════════════════════════════════════╗
  2. //║ RBBS 17.3A         JW-PC Consulting DataFlex.HST      (608)837-1923 ║
  3. //║ Dual Std HST/V.32/MNP5/V.42     RBBSnet 8:972/2     FIDOnet 1:121/8 ║
  4. //╚═════════════════════════════════════════════════════════════════════╝
  5. //////////////////////////////////////////////////////////////////////////
  6. //Protocol salt file for Telix's external protocols by Jim Wargula
  7. //Last edited (09-21-90)
  8. //used for the DSZ YMODEM-G protocol.  (It will work for u/ling and d/ling)
  9. //DSZ  Ymodem-G is faster than internal Ymodem-G
  10. //Edit directory path to DSZ, compile with CS, and
  11. //Install as SCRIPT in Protocol installation section
  12. //////////////////////////////////////////////////////////////////////////
  13.  
  14. str dsz[80]  =
  15.   "c:\util\DSZ port ";                      // edit this path!
  16.  
  17. str upld[24]  =
  18.    " pW1 pB4096 ha sl sb -g ";              // edit DSZ switches as required
  19.  
  20. str dnld[24]=
  21.    " pW1 pB4096 ha sl rb -g ";              // edit DSZ switches as required
  22.  
  23. str port[1];
  24.  
  25. //////////////////////////////////////////////////////////////////////////
  26.  
  27. Main ()
  28. {
  29.  itos(get_port(),port);
  30.  if (_ext_filespec == "")
  31.   { strcat(dsz,port);
  32.     strcat(dsz,dnld);
  33.     strcat(dsz,_down_dir);
  34.    }
  35.  else
  36.   { strcat(dsz,port);
  37.     strcat(dsz,upld);
  38.     strcat(dsz,_ext_filespec);
  39.    }
  40.  dos(dsz,0);
  41.  alarm(1);
  42. }
  43. //////////////////////// THE END /////////////////////////////////////////
  44.